home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / qpopper2.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  77 lines

  1. #
  2. # This script was written by Thomas reinke <reinke@securityspace.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Changes by rd: description moved, bugfix
  7.  
  8. if(description)
  9. {
  10.  script_id(10948);
  11.  script_bugtraq_id(2811);
  12.  script_version ("$Revision: 1.8 $");
  13.  script_cve_id("CVE-2001-1046");
  14.  name["english"] = "qpopper options buffer overflow";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"]  = "
  18. The remote qpopper server, according to its banner, is
  19. running version 4.0.3 or version 4.0.4.  These versions
  20. are vulnerable to a buffer overflow if they are configured
  21. to allow the processing of a user's ~/.qpopper-options file.
  22. A local user can cause a buffer overflow by setting the
  23. bulldir variable to something longer than 256 characters.
  24.  
  25. *** This test could not confirm the existence of the
  26. *** problem - it relied on the banner being returned.
  27.  
  28. Solution : Upgrade to the latest version, or disable
  29. processing of user option files.
  30.  
  31. Risk factor : High";
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "qpopper options buffer overflow";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2002 Thomas Reinke");
  41.  
  42.  family["english"] = "Misc.";
  43.  
  44.  script_family(english:family["english"]);
  45.  script_dependencie("find_service.nes");
  46.  script_require_ports("Services/pop3", 110);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. port = get_kb_item("Services/pop3");
  55. if(!port)port = 110;
  56.  
  57. banner = get_kb_item(string("pop3/banner/", port));
  58. if(!banner)
  59. {
  60.     if(get_port_state(port))
  61.     {
  62.     soc = open_sock_tcp(port);
  63.     if(!soc)exit(0);
  64.     banner = recv_line(socket:soc, length:4096);
  65.     }
  66. }
  67.  
  68. if(banner)
  69. {
  70.   
  71.     if(ereg(pattern:".*Qpopper.*version (4\.0\.[34]).*", string:banner, icase:TRUE))
  72.     {
  73.     security_hole(port);
  74.     }
  75. }
  76. exit(0);
  77.